home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
Servis
/
X-setup
/
_SETUP.1
/
XQ Modem Options.xpl
< prev
next >
Wrap
Text File
|
1998-08-08
|
1KB
|
53 lines
"FILE"="Xteq Systems X-Setup Plugin 3.1"
"TYPE"="1"
"COUNT"="4"
"UIPATH"="Hardware\Modem"
"NAME"="Init Commands"
"LANGUAGE"="VBScript"
"TEXT 1"="Command 1"
"TEXT 2"="Command 2"
"TEXT 3"="Command 3"
"TEXT 4"="Command 4"
"DESCRIPTION 1"="Here you can change the commands that are sent to your modem before dialing easily."
"DESCRIPTION 2"=""
"DESCRIPTION 3"=""
"AUTHOR"="Xteq Systems"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
"COMMENT 2"="Version 1.1"
Sub Plugin_Initialize
if RegPathExists("HKLM\System\CurrentControlSet\Services\Class\Modem\0000\Init") then
for i=1 to 4
s=RegReadValue("HKLM\System\CurrentControlSet\Services\Class\Modem\0000\Init\" & i)
SetUIElement i,s
next
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
for i=1 to 4
s=GetUIElement(i)
Call RegWriteValue("HKLM\System\CurrentControlSet\Services\Class\Modem\0000\Init\" & i,s,1)
next
End Sub
Sub Plugin_Terminate
End Sub